/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  background: black url("misc web/asset/mikulocker.jpg") no-repeat center center fixed;
  background-size: cover; 
  color: black;
  font-family:Arial, sans-serif;
  }
  img {
  float: left;
  }
  .header {
  border-radius: 25px;
  background: rgba(157, 191, 186, 0.5) url("misc web/asset/buildingforbanner.jpg") no-repeat center center fixed;
  background-size: cover; 
  text-align: center;
  padding: 20px;
  border: 3px solid #DFF5EF;
  }
  .content {
  margin-top:25px;
  border-radius: 25px;
  background-color: rgba(157, 191, 186, 0.5);
  padding: 10px;
  height: auto ;
  border: 3px solid #DFF5EF;
  overflow:auto;
  }